From: kaf24@viper.(none) Date: Sat, 12 Mar 2005 15:42:39 +0000 (+0000) Subject: bitkeeper revision 1.1159.270.4 (42330defA42oRGAfkwmQERgN45uyOg) X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~17400^2~121^2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=322cee6129e74bd9ff7595e92e17a77305abffcf;p=xen.git bitkeeper revision 1.1159.270.4 (42330defA42oRGAfkwmQERgN45uyOg) Python packages can be installed to the Python installation's 'native' location, instead of generic /usr/lib/python, by specifying XEN_PYTHON_NATIVE_INSTALL in the environment or on the make command line. Signed-off-by: Keir Fraser --- diff --git a/tools/python/Makefile b/tools/python/Makefile index 3a42f6047f..a676cdf0e9 100644 --- a/tools/python/Makefile +++ b/tools/python/Makefile @@ -6,8 +6,13 @@ all: build build: CFLAGS="$(CFLAGS)" python setup.py build +ifndef XEN_PYTHON_NATIVE_INSTALL install: all CFLAGS="$(CFLAGS)" python setup.py install --home="$(DESTDIR)/usr" +else +install: all + CFLAGS="$(CFLAGS)" python setup.py install --root="$(DESTDIR)" +endif clean: rm -rf build *.pyc *.pyo *.o *.a *~